feat: replace Address with UserAddress type and add new SDK features#128
Open
fern-api[bot] wants to merge 1 commit intomasterfrom
Open
feat: replace Address with UserAddress type and add new SDK features#128fern-api[bot] wants to merge 1 commit intomasterfrom
fern-api[bot] wants to merge 1 commit intomasterfrom
Conversation
This update replaces the Address type with the more specific UserAddress type in user creation methods, adds support for Python 3.13-3.15, introduces new compendium and lab account management capabilities, and expands order transaction handling. Key changes: - Replace Address with UserAddress type in create_user() methods - Add support for Python 3.13, 3.14, and 3.15 - Add new compendium client for lab test search and conversion - Add lab_account client for managing laboratory accounts - Add order_transaction client for handling order transactions - Export 50+ new types including CanonicalCandidate, CompendiumSearchLabs, OrderSummary - Add logging configuration support to client constructors 🌿 Generated with Fern
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
loggingparameter available on client constructors allows fine-grained control over HTTP debugging information. Lab report parser now accepts multiple files for batch processing.create_user()method now requires aUserAddressobject instead ofAddress. Update your imports fromfrom vital import Addresstofrom vital import UserAddress. The UserAddress type has the same structure and fields as the previous Address type.CompendiumClientprovidessearch()andconvert()methods to query and standardize lab tests across providers. AddedLabAccountClientwithget_team_lab_accounts()method for managing lab provider integrations. Enhanced logging capabilities with configurable log levels and console output.UsStateenum containing all US state abbreviations andUserAddressmodel for structured address information.